home *** CD-ROM | disk | FTP | other *** search
-
- struct GUIContext
- {
- struct Screen *Screen;
- struct Window *Window;
- void *VisualInfo;
- struct TextAttr *TextAttr;
- int BorderTop,BorderLeft;
- int InnerWidth,InnerHeight;
- struct Gadget *ContextGadget;
- void (*Dispose)(struct GUIContext *gui);
- char *(*Show)(struct GUIContext *gui);
- void (*Hide)(struct GUIContext *gui);
- BOOL (*Handle)(struct GUIContext *gui,unsigned long signals);
- unsigned long Signals;
- };
-
- struct GUIContext *CreateGUI();
-
-